home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / hard / hack / i2clib40.lha / i2clib40 / Schematic / README < prev    next >
Text File  |  1999-01-10  |  4KB  |  89 lines

  1.  
  2.  
  3. WARNING
  4. -------
  5.  
  6. Connecting selfmade hardware to your Amiga is never a good idea.
  7. Although I do mention some particular dangers in the following
  8. paragraphs, there are a lot more things you might do wrong. If you
  9. feel uncomfortable with this idea, quit now before you can do any
  10. damage. Otherwise proceed at your own risk.
  11.  
  12.  
  13. Power supply
  14. ------------
  15.  
  16. One of the most dreadful things that can happen to your Amiga is
  17. blowing a fuse on one of the external connectors. These fuses are
  18. soldered to the motherboard (at least that's true for A2000, and I
  19. don't think things have become any better with the later Amiga models)
  20. and, as you can imagine, they are very hard to replace.
  21.  
  22. So when in doubt, always use an external power supply for your I²C bus
  23. interface and devices, and don't connect any more lines than are
  24. absolutely necessary to establish data communication. And, for
  25. heaven's sake, always make sure you connect the right lines.
  26.  
  27. Now for some details on the power outputs:
  28.  
  29. - Parallel port: +5V on pin 14, up to 100 mA (not present on A1000).
  30.   Don't use this supply, unless you've made sure that your I²C chips
  31.   require significantly less than that current. Hint: *Never* use this
  32.   power supply for a teletext decoder, because 100 mA is about exactly
  33.   what that chip consumes!
  34.  
  35. - Serial port: ±12V on pin 9/10, up to 50 mA (not present on A1000).
  36.   Alright, here's one exception: It would be foolish *not* to use
  37.   this power supply. After all, you'll only use it for the RS232 line
  38.   driver, and that's what it apparently was intended for.
  39.  
  40. - Floppy port: +5V on pin 12, up to 270 mA (410 mA surge).
  41.   If you already have some external floppies, try to determine their
  42.   power requirements first, to see how much would be left for other
  43.   devices. But no matter what the result, it is *always* a bad idea to
  44.   blindly connect some selfmade and not yet tested hardware to this
  45.   supply, because defective hardware might just short out the power.
  46.   (Don't say that's silly, it has happened to me.)
  47.   Note: According to RKRM, there are also some Amigas rated for
  48.   540 mA (870 mA surge) on this line. I suppose this refers to the
  49.   "big" models (A2/3/4000), but unfortunately RKRM doesn't state
  50.   that for certain. So unless you can confirm this information from
  51.   your user's manual, always assume that the current limit is
  52.   270 mA. :-(
  53.  
  54.  
  55. The floppy interface
  56. --------------------
  57.  
  58. The relationship between SELx signals and the pin numbers that they
  59. can be found on depends on what position in the floppy chain you are
  60. talking about. So to clarify things:
  61.  
  62. The line that is designated "SEL1/Pin 21" in the diagram should always
  63. be connected to Pin 21. Don't worry about which SELx line the
  64. interface will ultimately end up with, i2c.library will find it.
  65.  
  66. The I²C interface as shown in the diagram is intended to be the last
  67. device in the floppy chain.
  68.  
  69. Other configurations are conceivable, too, but would be more
  70. complicated. If you want your I²C interface to have both a "disk in"
  71. and "disk out" connector, you can't just "tap" the floppy bus, you
  72. also have to kind of rotate the SELx lines between both connectors:
  73.  
  74.  disk in     disk out
  75.     21                  this is the SELx signal that you listen to
  76.     9----->-----21
  77.     20---->-----9
  78.                 20      this line is not connected for the next drive
  79.  
  80. One more important note on the floppy interface. For reasons that I
  81. can't quite comprehend, it seems that the plain SN7401 isn't available
  82. from many dealers, the 74LS01 seems to be much more common. That's
  83. alright, however, because LS (low-power) or not doesn't make much of a
  84. difference here. But NEVER ever use a 7400 NAND chip instead of the
  85. 7401! The 7401 has open-collector gates, the 7400 hasn't! Such a
  86. modification to the interface design would not work and would most
  87. likely result in damaging or destroying your I²C peripherals!
  88.  
  89.